home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / c / bc_pas_1.zip / MIXERS < prev    next >
Text File  |  1992-12-01  |  767b  |  29 lines

  1. ###
  2. ### Build file for MIXERS.ASM to generate the MIXBIN.H
  3. ###
  4.  
  5. DEBUG=0             ## 1 = YES, 0 = NO
  6.  
  7. AS= /Mx                         ## static assember commands
  8. CS= /c /Ox            ## static C compiler commands
  9. LS=                             ## static linker commands
  10.  
  11. AO= /Zi             ## optional assember commands
  12. CO= /Zi             ## optional C compiler linker commands
  13. LO= /Co /Ma            ## optional linker commands
  14.  
  15. INC= ..\..\inc
  16. GINC= ..\..\..\inc
  17. LIB=$(INC)
  18.  
  19. rmixers.obj: mixers.asm mixers.inc $(INC)\common.inc
  20.     masm $(AS) $(AO) mixers,rmixers;
  21.     link rmixers,,,$(LIB)\mvtlib+$(LIB)\mvhtlib;
  22.     exe2bin rmixers.exe mixer.drv
  23.     makebin mixer.drv            ## builds mixbin.h
  24.     del rmixers.exe
  25.  
  26. origmixc.obj: origmixc.c mixbin.h
  27.     cl $(CS) $(CO) origmixc.c
  28.  
  29.